home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / ums / IntuiNews1_4a.lha / UMS / Rexx / GotoMsg.intui < prev    next >
Text File  |  1995-08-27  |  666b  |  42 lines

  1. /*
  2.  
  3.    $VER: GotoMsg.intui 1.0 (27.8.95)
  4.  
  5.    Author:
  6.     Matthias Scheler (tron@lyssa.owl.de)
  7.  
  8.    Function:
  9.     asks for a message number and display the message
  10.  
  11.    History:
  12.     0.1   initial version
  13.     1.0   released with IntuiNews 1.3
  14.  
  15.    Example for "ums.config":
  16.     ( IntuiNews.Rexx
  17.     ...
  18.         "GroupWindow           F2      GotoMsg.intui\n"
  19.     ...
  20.     )
  21.  
  22. */
  23.  
  24. /* Exit if Group Window is not active. */
  25.  
  26. OPTIONS RESULTS
  27.  
  28. STATUS
  29. IF RESULT~="GROUP" THEN EXIT 5
  30.  
  31. /* Ask the user for the message numbr. */
  32.  
  33. 'GETSTRING TITLE "Goto Message" LABEL "_Message Number"'
  34. IF RESULT="RESULT" THEN EXIT 5
  35. MsgNum=RESULT
  36.  
  37. /* now scan it */
  38.  
  39. BEGINSCAN
  40. 'SCANMSG' MsgNum
  41. ENDSCAN
  42.